AiHigh

 

AiHigh function returns the High setting value of AI tag.

 

float @AiHigh(string tag);

 

Arguments

string tag : AI tag name

 

Return Value

High setting value of AI tag

 

Sample

value = @AiHigh("ai02");

 

Description : The High setting value of AI tag named 'ai02' is stored in the variable named 'value'.

 

ex1) Assume that the setting value of AI tag is set as follows : HiHi->100, High -> 90, Low -> 30, LoLo -> 20

         In this case, if ' value = @AiHigh("ai02"); ' is executed, '90' is stored in the variable named 'value'

 

ex2) If you want to change the High setting value of AI tag named 'ai02', use 'Tag Member'.

          ' $ai02.high = 80; ' changes the High setting value of AI tag named 'ai02' into '80'

 

 Reference

 Tag Member